home *** CD-ROM | disk | FTP | other *** search
/ Experimental BBS Explossion 3 / Experimental BBS Explossion III.iso / gus / undersea.zip / INSTGUS.BAT < prev    next >
DOS Batch File  |  1993-11-24  |  1KB  |  45 lines

  1. rem     Install program for Gravis Ultrasound Card 
  2. @echo off
  3. if %1x==x goto USAGE
  4. cls
  5. echo ─────────────────────────────────────────────────────────────────────────
  6. echo           Gravis Ultrasound Drivers Install
  7. echo ─────────────────────────────────────────────────────────────────────────
  8. pause
  9. copy %1\setup.exe setup.exe
  10. copy %1\ka.rld .\main\ka.rld
  11. copy %1\kala.rld .\la\ka.rld
  12. copy %1\kalogo.rld .\kalogo.rld
  13. copy %1\ultramid.ini .\ultramid.ini
  14. copy %1\ultrasnd.exe .\ultrasnd.exe
  15. copy %1\gravisdg.drv .\main\drivers\gravisdg.drv
  16. copy %1\gravismu.drv .\main\drivers\gravismu.drv
  17. copy %1\mus.rld .\museum\mus.rld
  18. copy %1\tr.rld .\treasure\tr.rld
  19. echo Install complete.  Now running setup program...
  20. if not exist setup.exe goto nosetup
  21. .\setup
  22. if errorlevel 1 goto abort
  23. echo Setup complete!
  24. goto endinst
  25. :nosetup
  26. echo Setup aborted!  Setup program not found.
  27. goto endinst
  28. :abort
  29. echo Installation aborted!  Error encountered.
  30. goto endinst
  31. :usage
  32. cls
  33. echo       Please, copy  INSTGUS.BAT  file to directory on your hard 
  34. echo    drive where you have installed Undersea Adventure.  Then from the
  35. echo    directory on your hard drive execute that file with the name of 
  36. echo    the floppy drive to install from.  For example:
  37. echo;     
  38. echo           cd \sea
  39. echo           copy a:instgus.bat
  40. echo           INSTGUS A:
  41. echo;
  42. echo    This install program will copy all nessasary files for your  
  43. echo    Gravis Ultrasound Card 
  44. :endinst
  45.